home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C & C++ Multimedia Cyber Classroom
/
C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso
/
cpphtp2
/
code.jar
/
code
/
ch11
/
fig11_14.txt
< prev
next >
Wrap
Text File
|
1998-02-27
|
377b
|
16 lines
1 // Fig. 11.14: fig11_14.cpp
2 // Character input with member function getline.
3 #include <iostream.h>
4
5 int main()
6 {
7 const SIZE = 80;
8 char buffer[ SIZE ];
9
10 cout << "Enter a sentence:\n";
11 cin.getline( buffer, SIZE );
12
13 cout << "\nThe sentence entered is:\n" << buffer << endl;
14 return 0;
15 }